footer {
  background-color: #333;
  padding: 20px 0;
  margin-top: 10rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
  max-height: 120rem;
  /* grid-template-rows: 12rem; */
  margin: 0 auto;
  padding: 0 20px;
}
#about{
  grid-column: 1/3;
}
#contact{
  grid-column: 3/5;
}
.footer-section{
  color:white;
  margin-bottom: 3rem;
}
.footer-section h3 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.footer-section li{
  font-size: 1.7rem;
  /* margin-bottom: 0.5rem; */
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  color: white;
}


.instagram-ico{
  background: url("../../images/icons/instagram.png");
}

.facebook-ico{
  background: url("../../images/icons/facebook.png");
}

.linkedin-ico{
  background: url("../../images/icons/linkedin.png");
}

.tiktok-ico {
    background: url("../../images/icons/tiktok.png");
}
.footer-section a{
  text-decoration: none;
  color: white;
}

.ico{
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: cover;
  margin: 5px;
  vertical-align: middle;
  
}

.ico-l{
  width: 30px;
  height: 30px;
}
.footer-bottom p{
  font-size: 1.25rem;
}


/* Media Queries */
@media (max-width: 800px) {
  .footer-container {
    display: block;
  }

  
}

@media all and (min-width:2200px){
  .ico-l{
    height: 60px ;
    width: 60px;
  }
}

@media all and (min-width:1300px) and (max-width:2200px){
  .ico-l{
    height: 48px ;
    width: 48px;
  }
  .footer-section li {
    font-size: 1.5rem;}
  
  .footer-section h3 {
      font-size: 1.7rem;}
      .footer-section p {
        font-size: 1.5rem;}

  
}

